Subject: Handy Batch files.

Short and sweet and very neat!

To add windows functionality to your DOS Box, create these batch files in your \WINDOWS\COMMAND directory.

E.BAT (Brings up Explorer in the Current Directory in DOS).
@explorer /E, .
^Z

X.BAT (Brings up the Current directory in your DOS box into a window).
@explorer .
^Z

DB.BAT (Creates a new DOS box, and Executes a command if requested).
@echo off
if %1. == . goto noarg
START C:\COMMAND /K %1 %2 %3 %4 %5 %6 %7 %8 %9 goto end
:noarg
START C:\COMMAND
:end
^Z